
SEO Links Pro in Kunena 1.7.2 (tested in J2.5)
tested only in Kunena 1.7.2!

1. Important: Do not set a title to your SEO links!
=========================================================
        2. Open /components/com_kunena/template/default/view/view.php
        3. Search for the following line
 
<?php foreach ( $this->messages as $message ) $this->displayMessage($message) ?>
 
            Replace it with:
 
<?php
                #SEOLinks BOM
                $seoparams = new JRegistry();
                $seorow = new StdClass();
                $seorow->id = 0;
                foreach ( $this->messages as $message ) {
                    if (JPluginHelper::importPlugin('content','seolinks',true)) {
                        $seorow->text = $message->message;
  JDispatcher::getInstance()->trigger('onContentBeforeDisplay', array('com_kunena.topic', $seorow, $seoparams));
                        $message->message = str_replace(array('<a', ' href="', '</a>', '" title="">', '[url ='), array('[url', '=', '[/url]', ']', '[url='), $seorow->text);
                    }
                    $this->displayMessage($message);
                }
                #SEOLinks EOM
            ?>
=========================================================
SEO Links Pro in Kunena for Joomla 1.5 (tested on Kunena 1.6.4)
=========================================================
        Do not set a title to your SEO links!
 
        1. Open /components/com_kunena/template/default/view/view.php
        2. Search for the following line
 
<?php foreach ( $this->messages as $message ) $this->displayMessage($message) ?>
 
            Replace it with:
 
            #SEOLinks BOM
            $seoparams = new JParameter('');
            $seorow = new StdClass();
            $seorow->id = 0;
            foreach ( $this->messages as $message ) {
                if (JPluginHelper::importPlugin('content','seolinks',true)) {
                    $seorow->text = $message->message;
 JDispatcher::getInstance()->trigger('onPrepareContent', array($seorow, $seoparams));
                    $message->message = str_replace(array('<a', ' href="', '</a>', '" title="">', '[url ='), array('[url', '=', '[/url]', ']', '[url='), $seorow->text);
                }
                $this->displayMessage($message);
            }
            #SEOLinks EOM
=========================================================
SEO Links Pro in Kunena 2.0 for Joomla 1.5 (tested on Kunena 2.0.2)
=========================================================
 1. Open /components/com_kunena/template/{default template folder, for example: blue_eagle}/html/topic/default_message.php
 2. Search for the following line
			<?php echo KunenaHtmlParser::parseBBCode ($this->message->message, $this) ?>
 Replace it with:
 #SEOLinks BOM
			<?php
				$msg = KunenaHtmlParser::parseBBCode ($this->message->message, $this);
				if (JPluginHelper::importPlugin('content','seolinks',true)) 
				{
					$seoparams = new JRegistry();
					$seorow = new StdClass();
					$seorow->id = 0;
					$seorow->text = $msg;
					JDispatcher::getInstance()->trigger('onPrepareContent', array($seorow, $seoparams));
					$msg = $seorow->text;
				}
				echo $msg;
			?>
 #SEOLinks EOM
=========================================================
SEO Links Pro in Kunena 2.0 for Joomla 2.5 (tested on Kunena 2.0.2)
=========================================================
 1. Open /components/com_kunena/template/{default template folder, for example: blue_eagle}/html/topic/default_message.php
 2. Search for the following line
			<?php echo KunenaHtmlParser::parseBBCode ($this->message->message, $this) ?>
 Replace it with:
 #SEOLinks BOM
			<?php
				$msg = KunenaHtmlParser::parseBBCode ($this->message->message, $this);
				if (JPluginHelper::importPlugin('content','seolinks',true)) 
				{
					$seoparams = new JRegistry();
					$seorow = new StdClass();
					$seorow->id = 0;
					$seorow->text = $msg;
					JDispatcher::getInstance()->trigger('onContentBeforeDisplay', array('_com_kunena.topic', $seorow, $seoparams));
					$msg = $seorow->text;
				}
				echo $msg;
			?>
 #SEOLinks EOM
=========================================================